home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / mac / MACF / MGER.DIR / 00349_Script_349 < prev    next >
Text File  |  1995-10-10  |  550b  |  28 lines

  1. on enterFrame
  2.   global gCurrentSprite
  3.   --set the keyDownScript to "if the key = RETURN then set the editableText of sprite         --gCurrentSprite to FALSE"
  4.   
  5.   if length(field "name")>15 then
  6.     set gCurrentSprite to 3
  7.     RunOff
  8.   end if
  9.   if length(field "movie")>15 then
  10.     set gCurrentSprite to 4
  11.     RunOff
  12.   end if
  13.   
  14. end
  15.  
  16. on mouseDown
  17.   global gCurrentSprite
  18.   if rollOver(3) then
  19.     set gCurrentSprite = 3
  20.   else if rollOver(4) then
  21.     set gCurrentSprite = 4
  22.   end if  
  23. end
  24.  
  25. on exitFrame  
  26.   go "Title"
  27. end
  28.